.list-group-item-c{
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 2s ease-out;
    animation: slideDown 2s ease-out;
    margin-bottom: 20px;
}

.list-group-item-ct{
    border-top: 1px solid rgba(0, 0, 0, 0.247);
}

@keyframes slideDown {
    from {
      max-height: 0;
    }
    to {
      max-height: 1000px; /* Максимальная высота */
    }
}

.sw{
display: none;
}
/*#sw:checked ~ .list-group-item-c{
display: block;
max-height: 1000px;
}
#sw:checked ~ .list-group-item-ct .icon-c{
transform: rotate(45deg);
}*/
.icon-c{
font-size: 25px;
font-weight: 100;
transition: transform 0.1s ease-in-out;
}
.form-check-c{
    display: flex;
}
.form-check-c input[type="checkbox"][disabled = ""]{
    opacity: 0.4;
}
.form-check-c input[type="checkbox"]{
    appearance: none;
    font: inherit;
    color: black;
    cursor: pointer;
    width: 17px;
    height: 17px;
    border: 0.15em solid black;
    transform: translateY(+0.17em);

    display: grid;
    place-content: center;
}
.form-check-c input[type="checkbox"]::before{
    content: "";
    width: 11px;
    height: 11px;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 11px 11px #035772;
}
.form-check-c input[type="checkbox"]:checked::before{
    transform: scale(1);
}
.form-check-label{
    margin-left: 10px;
    transform: translateY(+0.17em);
}